home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / BROWSER.XPI / bin / components / nsCloseAllWindows.js < prev    next >
Encoding:
JavaScript  |  2006-09-10  |  5.0 KB  |  145 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 2001
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *  Conrad Carlen <ccarlen@netscape.com>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39.  
  40. /* This file implements the nsCloseAllWindows component which implements
  41.  * the nsICloseAllWindows interface. Use this component when all
  42.  * windows need to be closed and confirmation to save changes is required.
  43.  */
  44.  
  45.  
  46. /* ctor
  47.  */
  48. function nsCloseAllWindows() {
  49. }
  50.  
  51. nsCloseAllWindows.prototype = {
  52.  
  53.     // This "class" supports nsICloseAllWindows, and nsISupports.
  54.     QueryInterface: function (iid) {
  55.         if (iid.equals(Components.interfaces.nsICloseAllWindows) ||
  56.             iid.equals(Components.interfaces.nsISupports))
  57.             return this;
  58.  
  59.         Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  60.         return null;
  61.     },
  62.  
  63.     // ---------- nsICloseAllWindows methods ----------
  64.  
  65.     // closeAll: Close all open windows
  66.     closeAll: function(aAskToSave)  {
  67.  
  68.         var windowMediator = Components.classes['@mozilla.org/appshell/window-mediator;1'].
  69.                                 getService(Components.interfaces.nsIWindowMediator);
  70.         var enumerator = windowMediator.getEnumerator(null);
  71.  
  72.         while (enumerator.hasMoreElements()) {
  73.            var domWindow = enumerator.getNext();
  74.            if (aAskToSave && ("tryToClose" in domWindow)) {
  75.                if (!domWindow.tryToClose())
  76.                    return false;
  77.            }
  78.            domWindow.close();
  79.         };
  80.  
  81.         return true;
  82.     }
  83. }
  84.  
  85. // This Component's module implementation.  All the code below is used to get this
  86. // component registered and accessible via XPCOM.
  87. var module = {
  88.     firstTime: true,
  89.  
  90.     // registerSelf: Register this component.
  91.     registerSelf: function (compMgr, fileSpec, location, type) {
  92.         if (this.firstTime) {
  93.             this.firstTime = false;
  94.             throw Components.results.NS_ERROR_FACTORY_REGISTER_AGAIN;
  95.         }
  96.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  97.         compMgr.registerFactoryLocation( this.cid,
  98.                                          "Close All Windows",
  99.                                          this.contractId,
  100.                                          fileSpec,
  101.                                          location,
  102.                                          type );
  103.     },
  104.  
  105.     // getClassObject: Return this component's factory object.
  106.     getClassObject: function (compMgr, cid, iid) {
  107.         if (!cid.equals(this.cid)) {
  108.             throw Components.results.NS_ERROR_NO_INTERFACE;
  109.         }
  110.  
  111.         if (!iid.equals(Components.interfaces.nsIFactory)) {
  112.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  113.         }
  114.  
  115.         return this.factory;
  116.     },
  117.  
  118.     /* CID for this class */
  119.     cid: Components.ID("{2f977d48-5485-11d4-87e2-0010a4e75ef2}"),
  120.  
  121.     /* Contract ID for this class */
  122.     contractId: "@mozilla.org/appshell/closeallwindows;1",
  123.  
  124.     /* factory object */
  125.     factory: {
  126.         // createInstance: Return a new nsCloseAllWindows object.
  127.         createInstance: function (outer, iid) {
  128.             if (outer != null)
  129.                 throw Components.results.NS_ERROR_NO_AGGREGATION;
  130.  
  131.             return (new nsCloseAllWindows()).QueryInterface(iid);
  132.         }
  133.     },
  134.  
  135.     // canUnload: n/a (returns true)
  136.     canUnload: function(compMgr) {
  137.         return true;
  138.     }
  139. };
  140.  
  141. // NSGetModule: Return the nsIModule object.
  142. function NSGetModule(compMgr, fileSpec) {
  143.     return module;
  144. }
  145.